home *** CD-ROM | disk | FTP | other *** search
/ Cine Live 69 / Cine Live 69.iso / pc / Data / Interface / f3.k < prev    next >
Encoding:
Text File  |  2001-04-12  |  4.6 KB  |  236 lines

  1. module oRoot1 is cBox
  2. with 
  3.     Flags is $00000142; 
  4.     release Editor:
  5.         IOWindow is {$000000DF,$0000002A,$00000267,$000002CD,$00000000,$00000000,$00000000,$00000000};
  6.         LayoutWindow is {$000000A9,$00000047,$0000028F,$000001EF,$00000000,$00000000,$00000064,$00000000};
  7.     end;
  8.     Name is "Root"; 
  9.     Enabled is false; 
  10.     
  11.     Width is 800; Height is 600; 
  12.     
  13.     
  14.     Elements is [
  15.         oMusic2,
  16.         ofond3,
  17.         oScroller4,
  18.         ofilmo_imp6,
  19.         ofilmo_retour7,
  20.         ofilmo_somm8,
  21.         ortf9
  22.     ];
  23.     Events is [
  24.         cOnscreenEvent
  25.         with Flags is $00000004; 
  26.             Commands is [
  27.                 cRunCommand
  28.                 with Flags is $00000004; Target is oMusic2; Rewind is true; end
  29.             ];
  30.         end,
  31.         cKeyboardEvent
  32.         with Value is "+"; 
  33.             Commands is [
  34.                 cSetVolumeCommand
  35.                 with Flags is $00000004; Mode is ExecuteHigher; end
  36.             ];
  37.         end,
  38.         cKeyboardEvent
  39.         with Value is "-"; 
  40.             Commands is [
  41.                 cSetVolumeCommand
  42.                 with Mode is ExecuteLower; end
  43.             ];
  44.         end,
  45.         cKeyboardEvent
  46.         with Flags is $00000004; Value is "m"; 
  47.             Commands is [
  48.                 cRunCommand
  49.                 with Flags is $00000004; Target is oMusic2; Mode is Toggle; Rewind is true; end
  50.             ];
  51.         end
  52.     ];
  53. end;
  54.  
  55. object oMusic2 is cSound
  56. with 
  57.     Flags is $00000150; 
  58.     Name is "Music"; 
  59.     
  60.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  61.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  62.     Looping is true; 
  63.     URL is "../Sons/1.mp3"; 
  64.     
  65. end;
  66.  
  67. object ofond3 is cImage
  68. with 
  69.     Flags is $00000150; 
  70.     Name is "fond"; 
  71.     Enabled is false; 
  72.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  73.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  74.     
  75.     URL is "../Images/3.jpg"; 
  76.     
  77.     
  78. end;
  79.  
  80. object oScroller4 is cScroller
  81. with 
  82.     Flags is $00008051; 
  83.     Name is "Scroller"; 
  84.     Clipping is true; Cursor is oFingerCursor; 
  85.     X is 510; Y is 104; 
  86.     Width is 256; Height is 438; 
  87.     
  88.     Vertical is oVertical_Macintosh_Color_ScrollBar; 
  89.     Elements is [
  90.         oimage_biographie5
  91.     ];
  92.     Events is [
  93.         cMouseMovedEvent
  94.         with Flags is $00004004; 
  95.             Commands is [
  96.                 cScrollCommand
  97.                 with Flags is $00004004; Target is oTargetSelf; end
  98.             ];
  99.         end
  100.     ];
  101. end;
  102.  
  103. object oimage_biographie5 is cImage
  104. with 
  105.     Flags is $0000C154; 
  106.     Name is "image biographie"; 
  107.     
  108.     X is 149; 
  109.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  110.     
  111.     URL is "../Images/n3.jpg"; 
  112.     
  113.     
  114. end;
  115.  
  116. object ofilmo_imp6 is cImage
  117. with 
  118.     Flags is $00000150; 
  119.     Name is "filmo imp"; 
  120.     Shown is false; Cursor is oFingerCursor; 
  121.     X is 475; Y is 573; 
  122.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  123.     
  124.     URL is "../Images/actor%20imprim.jpg"; 
  125.     
  126.     
  127.     Events is [
  128.         cMouseEnterEvent
  129.         with Flags is $00000004; 
  130.             Commands is [
  131.                 cShowCommand
  132.                 with Flags is $00000004; Target is oTargetSelf; end
  133.             ];
  134.         end,
  135.         cMouseLeaveEvent
  136.         with Flags is $00000004; 
  137.             Commands is [
  138.                 cShowCommand
  139.                 with Flags is $00000004; Target is oTargetSelf; Mode is Clear; end
  140.             ];
  141.         end,
  142.         cMouseUpEvent
  143.         with Flags is $00000004; Flag is true; 
  144.             Commands is [
  145.                 cPrintCommand
  146.                 with Flags is $00000004; Target is ortf9; end
  147.             ];
  148.         end
  149.     ];
  150. end;
  151.  
  152. object ofilmo_retour7 is cImage
  153. with 
  154.     Name is "filmo retour"; 
  155.     Shown is false; Cursor is oFingerCursor; 
  156.     X is 321; Y is 573; 
  157.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  158.     
  159.     URL is "../Images/actor%20retour.jpg"; 
  160.     
  161.     
  162.     Events is [
  163.         cMouseEnterEvent
  164.         with 
  165.             Commands is [
  166.                 cShowCommand
  167.                 with Target is oTargetSelf; end
  168.             ];
  169.         end,
  170.         cMouseLeaveEvent
  171.         with 
  172.             Commands is [
  173.                 cShowCommand
  174.                 with Target is oTargetSelf; Mode is Clear; end
  175.             ];
  176.         end,
  177.         cMouseUpEvent
  178.         with Flag is true; 
  179.             Commands is [
  180.                 cRunCommand
  181.                 with Target is oMusic2; Mode is Clear; Rewind is true; end,
  182.                 cBackCommand
  183.                 with end
  184.             ];
  185.         end
  186.     ];
  187. end;
  188.  
  189. object ofilmo_somm8 is cImage
  190. with 
  191.     Flags is $00000154; 
  192.     Name is "filmo somm"; 
  193.     Shown is false; Cursor is oFingerCursor; 
  194.     X is 629; Y is 573; 
  195.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  196.     
  197.     URL is "../Images/actor%20somm.jpg"; 
  198.     
  199.     
  200.     Events is [
  201.         cMouseEnterEvent
  202.         with Flags is $00000004; 
  203.             Commands is [
  204.                 cShowCommand
  205.                 with Flags is $00000004; Target is oTargetSelf; end
  206.             ];
  207.         end,
  208.         cMouseLeaveEvent
  209.         with Flags is $00000004; 
  210.             Commands is [
  211.                 cShowCommand
  212.                 with Flags is $00000004; Target is oTargetSelf; Mode is Clear; end
  213.             ];
  214.         end,
  215.         cMouseUpEvent
  216.         with Flags is $00000004; Flag is true; 
  217.             Commands is [
  218.                 cBrowseCommand
  219.                 with Flags is $00000004; URL is "sommaire.k"; end
  220.             ];
  221.         end
  222.     ];
  223. end;
  224.  
  225. object ortf9 is cRTFText
  226. with 
  227.     Flags is $00000150; 
  228.     Name is "rtf"; 
  229.     Enabled is false; Shown is false; 
  230.     AdjustX is AlignToLeft; AdjustY is AlignToTop; 
  231.     AdjustWidth is GetLayoutWidth; AdjustHeight is GetDataHeight; 
  232.     
  233.     URL is "../Textes/3.rtf"; 
  234.     
  235.     Antialiased is true; 
  236. end;